home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / list / List_Remove.c < prev    next >
C/C++ Source or Header  |  1990-11-27  |  2KB  |  55 lines

  1. /* 
  2.  * List_Remove.c --
  3.  *
  4.  *    Source code for the List_Remove library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/list/RCS/List_Remove.c,v 1.4 90/11/27 11:06:34 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include "list.h"
  22.  
  23. extern void panic();
  24.  
  25. /*
  26.  * ----------------------------------------------------------------------------
  27.  *
  28.  * List_Remove --
  29.  *
  30.  *    Remove a list element from the list in which it is contained.
  31.  *
  32.  * Results:
  33.  *    None.
  34.  *
  35.  * Side effects:
  36.  *    The given structure is removed from its containing list.
  37.  *
  38.  * ----------------------------------------------------------------------------
  39.  */
  40. void
  41. List_Remove(itemPtr)
  42.     register    List_Links *itemPtr;    /* list element to remove */
  43. {
  44.     if (itemPtr == (List_Links *) NIL || !itemPtr ||
  45.     itemPtr == itemPtr->nextPtr) {
  46.     panic("List_Remove: invalid item to remove.\n");
  47.     }
  48.     if (itemPtr->prevPtr->nextPtr != itemPtr ||
  49.     itemPtr->nextPtr->prevPtr != itemPtr) {
  50.     panic("List_Remove: item's pointers are invalid.\n");
  51.     }
  52.     itemPtr->prevPtr->nextPtr = itemPtr->nextPtr;
  53.     itemPtr->nextPtr->prevPtr = itemPtr->prevPtr;
  54. }
  55.